				[ CalendarBean version 1.1 ]


Version 1.1 has the following changes / enhancments over version 1.0


1. 
Changed selection technique/today representation:
-------------------------------------------------

If you selected a date on the calendar the specific day was represented by a dark filled circle. The today was depicted with a circle outlined. 

Now whenever you kept selecting a number of days at a fast speed all these reprentations are messed up because the paint event is not generated fast enough. So I had to change these representation. You can see these changes by actually running the program. The selected day is now represented by making the day bold & today is represented by mking the day font a littel bigger than others & making it italics


2.

Added Direct Viewing of Selected Day on the cal by clicking the current day at the bottom of the calendar

3.
Removed reference bug from setDate,setMinDate & setMaxDate & respective getMethods methods
------------------------------------------------------------------------------------------
//the bug
eg. dp1.setMindate(dp2.getDate());
now dp1's mindate is refering to dp2's current date
now if we set dp2.setDate(GregorainCalendar)
dp1's mindate changes automatically without even using dp.setMinDate()
This can be a cause for a real trouble while using more than one object of DatePicker.

One of the noted problem - the Year list is not update as there is no call to dp.setMinDate()

Similar problem exists for setMaxDate



There are no major changes other than these. Even the current changes are only in the internal working of the bean. So go forward & replace the previous CalendarBn.jar file with the new.




-----------  Pramod S. Jaiswal 




